home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / music_utilities / pt030.dms / pt030.adf / Less / Readme.fnf < prev    next >
Text File  |  1987-06-15  |  859b  |  25 lines

  1. As received, this version of less had a couple of readily noticeable 
  2. inconsistencies with the documentation.  First, when repainting the 
  3. screen, it was cleared and repainted from the top down instead of 
  4. scrolling from the bottom up.  Secondly, the default tab spacing was 
  5. noted to be 4 spaces instead of 8.
  6.  
  7. To keep this version more consistent with the documentation and previous
  8. versions of less, the following changes were made in the source code and
  9. recompiled under Manx 3.4a:
  10.  
  11. File:      Line#:  
  12. ----       -----   
  13. option.c    67    Was:  { 'c', TRIPLE, 2, &top_scroll,
  14.                   Now:  { 'c', TRIPLE, 0, &top_scroll,
  15.  
  16.             130   Was:  { 'x', NUMBER|REPAINT, 4, &tabstop,
  17.                   Now:  { 'x', NUMBER|REPAINT, 8, &tabstop,
  18.  
  19. print.c     93    Was:  tab_stops = 4;
  20.                   Now:  tab_stops = 8;
  21.  
  22.  
  23. -Fred ><>
  24. 11-Aug-88
  25.